home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Nebula 1
/
Nebula One.iso
/
Misc
/
msql-1.0.6
/
src
/
regexp
/
regerror.c
< prev
next >
Wrap
C/C++ Source or Header
|
1994-06-29
|
203b
|
17 lines
#include <stdio.h>
#include <common/portability.h>
void
regerror(s)
char *s;
{
#ifdef ERRAVAIL
error("regexp: %s", s);
#else
fprintf(stderr, "regexp(3): %s", s);
exit(1);
#endif
/* NOTREACHED */
}